google.golang.org/grpc.ServiceConfig.retryThrottling (field)

10 uses

	google.golang.org/grpc (current package)
		clientconn.go#L954: 	if cc.sc.retryThrottling != nil {
		clientconn.go#L956: 			tokens: cc.sc.retryThrottling.MaxTokens,
		clientconn.go#L957: 			max:    cc.sc.retryThrottling.MaxTokens,
		clientconn.go#L958: 			thresh: cc.sc.retryThrottling.MaxTokens / 2,
		clientconn.go#L959: 			ratio:  cc.sc.retryThrottling.TokenRatio,
		service_config.go#L92: 	retryThrottling *retryThrottlingPolicy
		service_config.go#L235: 		retryThrottling:   rsc.RetryThrottling,
		service_config.go#L300: 	if sc.retryThrottling != nil {
		service_config.go#L301: 		if mt := sc.retryThrottling.MaxTokens; mt <= 0 || mt > 1000 {
		service_config.go#L304: 		if tr := sc.retryThrottling.TokenRatio; tr <= 0 {